Visual Basic (Declaration) | |
---|---|
Public Overloads Overridable Sub SendData( _ ByVal dataSamples As ArraySegment(Of Single) _ ) |
C# | |
---|---|
public virtual void SendData( ArraySegment<float> dataSamples ) |
C++/CLI | |
---|---|
public: virtual void SendData( ArraySegment<float> dataSamples ) |
Parameters
- dataSamples
- Time series data block to be consumed by attached Measurement. If UserInputSetup.IsComplexData is true, complex data is expected, and presented in this parameter as alternating real and imaginary values.
Send data for this channel into first-in-first-out (FIFO) buffer to be consumed by attached Measurement. Data can be sent for a multiple channels using SendData(IEnumerable<Single[]>) or UserInputData.SendData. just the copying the data from the offset of the arraySegment and copied size is the count of the arraySegment
Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)